home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1992-03-11 | 1.3 KB | 40 lines |
- DEFINITION MODULE BytesOp;
- (* File name: BytesOp.def *)
- (* Creation : July 10,1985 *)
- (* Function : Provid bytes operation for Modula-2/68 *)
- (* By : Morris *)
- (* *)
- (*
- * Copyright (c) 1985, 1986 by
- * Djavaheri Bros., Foster City, California.
- * All Rights Reserved.
- *
- * This software is furnished under a license and may be used and copied
- * only in accordance with the terms of such license and with the
- * inclusion of the above copyright notice. This software or any other
- * copies thereof may not be provided or otherwise made available to any
- * other person. No title to and ownership of the software is herby
- * transferred.
- *
- * The information in this software is subject to change without notice
- * and should not be construed as a commitment by Djavaheri Bros. No
- * warranty is implied or expressed.
- *
- * SCCID = "1.1 1/26/86";
- *)
- (* History of modifcation *)
- (* Date Who Why *)
- (* *)
-
- FROM SYSTEM IMPORT ADDRESS;
- EXPORT QUALIFIED MoveBytes,MoveShort;
-
- PROCEDURE MoveBytes (FromBuffer , TOBuffer: ADDRESS;
- n:CARDINAL );
-
- PROCEDURE MoveShort (FromBuffer , TOBuffer: ADDRESS;
- n:CARDINAL );
-
-
- END BytesOp.
-